Hannah Bowlin, Lorraine Kwok, Priyanka Srinivasan, Alice Tivarovsky, Kelly Wang

Image from Centers for Disease Control
Asthma is one of the most common chronic conditions in children across the United States, currently affecting more than 6 million children. New York City (NYC) hosts a much higher prevalence of childhood asthma (13%) than the rest of the United States (7.5%) - with children of color and low-income neighborhoods affected disproportionately:
#FIX LEGEND
asthma_map =
tidy_asthma_sf_ll %>%
filter(time_period == 2014) %>%
mutate(asthma_label = str_c("Children 5-14 with Asthma: ", public_school_children_5_14_yrs_old_with_asthma, "\n, Neighborhood: ", uhfcode)) %>%
leaflet() %>%
addProviderTiles("CartoDB.Positron") %>%
addPolygons(stroke = TRUE,
weight = 2,
opacity = 1,
color = ~asthma_pal(public_school_children_5_14_yrs_old_with_asthma),
fillOpacity = 0.8,
smoothFactor = 0.2,
highlight = highlightOptions(weight = 3,
color = "white",
bringToFront = TRUE),
label = ~asthma_label) %>%
addLegend("topleft",
pal = asthma_pal,
values = ~public_school_children_5_14_yrs_old_with_asthma,
title = "Children 5-14 with Asthma (rate per 1000)",
opacity = 1)
asthma_map
<<<<<<< HEAD
<<<<<<< HEAD
=======
<<<<<<< HEAD
=======
>>>>>>> 65b9c111f3233420283bbe65f2c3d2766877c48c
>>>>>>> 5b6500f14188069e301481122acbf24cdf5b6724
=======
>>>>>>> 48bbf48d5143b9046209037fdfbbeb30c5b1e671
Aside from creating a financial burden for the US economy and families, asthma leads to student absenteeism, further perpetuating educational gaps and socioeconomic disparities. It has been estimated that 14 - 18% of missed school days are explained by asthma episodes, making asthma one of the top causes of absenteeism.
The toll of asthma on children has drawn attention and resources towards mitigation. While root causes of asthma are still unknown, common triggers - particularly those associated with allergens - have been isolated. Household pests, including cockroaches and mice, are one of the most common indoor triggers.
The analyses presented here explore the association between childhood asthma and another highly prevalent NYC phenomenon - cockroaches. In 2017, 15.6% of households reported having pest infestations. As temperatures rise, cockroach populations are expected to increase, posing additional public health challenges, particularly among those who have asthma or respiratory reactions to cockroaches. The prevalence of homes with cockroaches, measured as number of households in an area that reported seeing at least one cockroach daily over the last month divided by number households in the area, is shown below.
#FIX LEGEND
roach_map =
tidy_asthma_sf_ll %>%
filter(time_period == 2014) %>%
mutate(roach_label = str_c("Homes with Cockroaches: ", homes_with_cockroaches, "\n, Neighborhood: ", uhfcode)) %>%
leaflet() %>%
addProviderTiles("CartoDB.Positron") %>%
addPolygons(stroke = TRUE,
weight = 2,
opacity = 1,
color = ~roach_pal(homes_with_cockroaches),
fillOpacity = 0.8,
smoothFactor = 0.2,
highlight = highlightOptions(weight = 3,
color = "white",
bringToFront = TRUE),
label = ~roach_label) %>%
addLegend("topleft",
pal = roach_pal,
values = ~homes_with_cockroaches,
title = "Homes with Cockroaches",
opacity = 1)
roach_map
<<<<<<< HEAD
<<<<<<< HEAD
=======
<<<<<<< HEAD
=======
>>>>>>> 65b9c111f3233420283bbe65f2c3d2766877c48c
>>>>>>> 5b6500f14188069e301481122acbf24cdf5b6724
=======
>>>>>>> 48bbf48d5143b9046209037fdfbbeb30c5b1e671
Asthma and cockroaches appear correlated - are they?
All data used for these analyses were taken from the NYC Health Department Environment and Health Data Portal. Asthma and cockroach prevalence came from the “All Available Data” dataset. Spatial geometries were taken from the NYC Health Department’s GIS Center. Analyses focused on asthma prevalence in public school children aged 5 - 14.
Overall, a strong positive correlation was observed between asthma and cockroaches. The highest asthma rates were observed among children in the Bronx. The highest proportion of homes with cockroaches was also observed in the Bronx. Furthermore, the strongest correlation between asthma and cockroaches was observed in the Bronx.
Potential confounding by poverty was explored and found to… Interactions between poverty and cockroaches were also explored.
The main limitation was not including all potential confounding by sociodemographic risk factors.
If you find yourself sharing space with cockroaches, the best thing you can do is to make your home as unappealing to them as possible. We recommend using humane and sustainable methods. More information can be found here.